Address

interface Address

The user's address containing information about a street, city, state, etc.

Since

7.23

Types

Link copied to clipboard
class Builder
A builder of Address.

Functions

Link copied to clipboard
open fun city(): String
The name of the city entered by the user.
Link copied to clipboard
open fun countryCode(): String
The ISO 3166 2-letter country code.
Link copied to clipboard
A subdivision of a city, e.g.
Link copied to clipboard
open fun newBuilder(countryCode: String): Address.Builder
Creates a new Address builder with the given country code.
Link copied to clipboard
open fun state(): String
The name of the state.
Link copied to clipboard
open fun street(): String
The whole street name.
Link copied to clipboard
open fun zip(): String
The ZIP code entered by the user.